home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue39
/
userint
/
ProjMan.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Pascal/Delphi Source File
|
1998-08-06
|
374 b
|
26 lines
unit ProjMan;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
ComCtrls,DockForm;
type
TProjManager = class(TDOckableForm)
TreeView1: TTreeView;
private
{ Private declarations }
public
{ Public declarations }
end;
var
ProjManager: TProjManager;
implementation
{$R *.DFM}
end.